home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / windows / editprog / newvisda.arj / FSPLASH.FRM < prev    next >
Text File  |  1994-04-03  |  2KB  |  86 lines

  1. VERSION 2.00
  2. Begin Form fsplash 
  3.    BackColor       =   &H00FF0000&
  4.    BorderStyle     =   0  'None
  5.    Caption         =   "VISDATA DEBUGGED AND ENHANCED"
  6.    ClientHeight    =   5520
  7.    ClientLeft      =   2880
  8.    ClientTop       =   2595
  9.    ClientWidth     =   7485
  10.    ClipControls    =   0   'False
  11.    ControlBox      =   0   'False
  12.    ForeColor       =   &H00FFFFFF&
  13.    Height          =   5985
  14.    Icon            =   FSPLASH.FRX:0000
  15.    Left            =   2790
  16.    LinkTopic       =   "Form1"
  17.    MaxButton       =   0   'False
  18.    MinButton       =   0   'False
  19.    ScaleHeight     =   5520
  20.    ScaleWidth      =   7485
  21.    Top             =   2220
  22.    Width           =   7665
  23.    Begin PictureBox Picture1 
  24.       AutoSize        =   -1  'True
  25.       Height          =   510
  26.       Left            =   3120
  27.       Picture         =   FSPLASH.FRX:0302
  28.       ScaleHeight     =   480
  29.       ScaleWidth      =   480
  30.       TabIndex        =   3
  31.       Top             =   3900
  32.       Width           =   510
  33.    End
  34.    Begin CommandButton Command2 
  35.       Caption         =   "&Exit"
  36.       Height          =   555
  37.       Left            =   3960
  38.       TabIndex        =   1
  39.       Top             =   3840
  40.       Width           =   1575
  41.    End
  42.    Begin CommandButton cmdContinue 
  43.       Caption         =   "&Continue"
  44.       Height          =   555
  45.       Left            =   1200
  46.       TabIndex        =   0
  47.       Top             =   3840
  48.       Width           =   1575
  49.    End
  50.    Begin TextBox Text1 
  51.       Alignment       =   2  'Center
  52.       BackColor       =   &H00000000&
  53.       BorderStyle     =   0  'None
  54.       FontBold        =   -1  'True
  55.       FontItalic      =   -1  'True
  56.       FontName        =   "Bookman Old Style"
  57.       FontSize        =   24
  58.       FontStrikethru  =   0   'False
  59.       FontUnderline   =   0   'False
  60.       ForeColor       =   &H000000FF&
  61.       Height          =   2175
  62.       Left            =   660
  63.       MultiLine       =   -1  'True
  64.       TabIndex        =   2
  65.       Text            =   "VISNEWDA Beta 3.1  April 2 1994  Robert E. Smythe  "
  66.       Top             =   840
  67.       Width           =   6015
  68.    End
  69. End
  70.  
  71. Sub cmdContinue_Click ()
  72. VDMDI.Show
  73. Unload Me
  74. End Sub
  75.  
  76. Sub Command2_Click ()
  77. End
  78. End Sub
  79.  
  80. Sub Form_Load ()
  81. Me.Left = (Screen.Width - Me.Width) / 2
  82.    Me.Top = (Screen.Height - Me.Height) / 2
  83.  
  84. End Sub
  85.  
  86.